Carbon


DataBrowserItemAcceptDragProcPtr

Header: ControlDefinitions.h Carbon status: Under Evaluation

typedef UInt16(* DataBrowserItemAcceptDragProcPtr) (
    ControlRef browser, 
    DataBrowserItemID itemID, 
    DataBrowserPropertyID property, 
    const Rect *theRect, 
    DragReference theDrag
);

You would declare your function like this if you were to name it MyDataBrowserItemAcceptDragCallback:

UInt16 MyDataBrowserItemAcceptDragCallback (
    ControlRef browser, 
    DataBrowserItemID itemID, 
    DataBrowserPropertyID property, 
    const Rect *theRect, 
    DragReference theDrag
);
browser
itemID
property
theRect
theDrag

AVAILABILITY

Under evaluation for Carbon.


© 2000 Apple Computer, Inc. — (Last Updated 5/8/2000)